[skipvalue_prev]
Calculates the value for the skip parameter, for use in Inline search results
Returns empty if no Prev link is needed. 

Usage example:
<a href="index.lasso?find=[form_param: 'searchtext', 
	EncodeURL]&skip=[skipvalue_prev]">Previous page</A>

Extended usage example to show link only when needed:
[if: (string_length: (skipvalue_prev))>'0']
<a href="index.lasso?find=[form_param: 'searchtext', 
	EncodeURL]&skip=[skipvalue_prev]">Previous page</A>
[/if]

#MACRO_BEGIN
[if: (Shown_First)>'1'][if: 
	(Shown_First)>(MaxRecords_Value)][math_sub: (Shown_First), 
	(MaxRecords_Value)][else]0[/if][/if]
#MACRO_END


[skipvalue_next]
Calculates the value for the skip parameter, for use in Inline search results.
Returns empty if no Next link is needed. 

Usage example:
<a href="index.lasso?find=[form_param: 'searchtext', 
	EncodeURL]&skip=[skipvalue_next]">Next page</A>

Extended usage example to show link only when needed:
[if: (string_length: (skipvalue_next))>'0']
<a href="index.lasso?find=[form_param: 'searchtext', 
	EncodeURL]&skip=[skipvalue_next]">Next page</A>
[/if]

#MACRO_BEGIN
[if: (Shown_Last)<(Found_Count)][Shown_Last][/if]
#MACRO_END
